{% extends "pages/auth/_layout.html" %} {% from "components/macros.html" import submit_button %} {% from "components/auth_macros.html" import auth_field, auth_banner %} {% block title %}Choose a new password - {{ project_name }}{% endblock %} {% block auth_form %}

Choose a new password

Then sign in with it.

{{ auth_banner("error") }} {{ auth_field("password", "New password", type="password", autocomplete="new-password", minlength=8, placeholder="At least 8 characters") }} {{ submit_button("Update password", "Updating…") }}
{% endblock %} {% block auth_footer %} Need a new link? Start over. {% endblock %}